@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/challenge/> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix uom: <http://www.ontology-of-units-of-measure.org/resource/om-2/> .
@prefix iopp: <https://w3id.org/iadopt/pattern/> .
@prefix patt: <http://example.org/iadopt/pattern> .

ex:comvar
    a 
        iop:Variable ;
    rdfs:label 
        "estimation of the energy of reaction upon combustion of hexanol" ;
    rdfs:comment 
        """energy released upon combustion of 99.98(w/w) pure hexanol in air at atmospheric pressure and atmospheric oxygen level.""" ;
    ex:issue "https://github.com/mabablue/I-ADOPT-examples-playground/issues/81" ;
    iop:hasObjectOfInterest 
        <https://www.wikidata.org/entity/Q76933> ;
    iop:hasMatrix 
        <https://www.wikidata.org/entity/Q133235> ;
    iop:hasContextObject 
        <https://www.wikidata.org/entity/Q7391292> ;
    iop:hasProperty 
        <https://qudt.org/vocab/quantitykind/MolarEnergy> ;
    iop:hasConstraint 
        [ a iop:Constraint ;
             rdfs:label "purity: 99.98(w/w)" ;
             iop:constrains <https://www.wikidata.org/entity/Q76933> ;
        ] ,
        [ a iop:Constraint ;
             rdfs:label "condition: at 1 atm pressure" ;
             iop:constrains <https://www.wikidata.org/entity/Q133235> ;
        ] ,
        [ a iop:Constraint ;
             rdfs:label "condition: at atmospheric oxygen level" ;
             iop:constrains <https://www.wikidata.org/entity/Q133235> ;
        ] .

<https://www.wikidata.org/entity/Q76933>
    a 
        iop:Entity ;
    rdfs:label 
        "hexanol (C6H14O)" .

<https://www.wikidata.org/entity/Q133235>
    a 
        iop:Entity ;
    rdfs:label 
        "combustion reaction" .

<https://qudt.org/vocab/quantitykind/MolarEnergy>
    a 
        iop:Property ;
    rdfs:label 
        "molar energy" .

<https://www.wikidata.org/entity/Q7391292>
    a 
        iop:Entity ;
    rdfs:label 
        "air" .
